Convert this big_integer to hexadecimal text.
big_integer
Does not include a base prefix in the output, i.e. big_integer(25).to_hex() returns 19 rather than 0x19.
big_integer(25).to_hex()
19
0x19
0.12.0